home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
et
/
et-2_2.lha
/
et2.2
/
applications
/
draw
/
BezierShape.h
< prev
next >
Wrap
C/C++ Source or Header
|
1990-10-18
|
588b
|
25 lines
#ifndef BezierShape_First
#define BezierShape_First
#include "PolyShape.h"
//---- Box Shape ---------------------------------------------------------------
class BezierShape : public PolyShape {
public:
MetaDef(BezierShape);
BezierShape();
short *GetImage();
ShapeSketcher *NewSketcher(DrawView *dv, SketchModes m);
void Outline(Point p1, Point p2);
void Draw(Rectangle);
void Highlight(HighlightState);
ShapeStretcher *NewStretcher(DrawView *dv, int handle);
void MoveAround(int n, Point d, bool redraw= TRUE);
};
#endif BezierShape_First